home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEDocGetObj.au3 < prev    next >
Encoding:
Text File  |  2006-07-14  |  408 b   |  9 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser to the AutoIt Homepage, get a reference
  3. ;                to the document object and display a document attribute
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IECreate ("http://www.autoitscript.com")
  8. $oDoc = _IEDocGetObj ($oIE)
  9. MsgBox(0, "Document Created Date", $oDoc.fileCreatedDate)